home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2007 January, February, March & April
/
Chip-Cover-CD-2007-02.iso
/
Pakiet bezpieczenstwa
/
mini Pentoo LiveCD 2006.1
/
mpentoo-2006.1.iso
/
livecd.squashfs
/
usr
/
include
/
enlightenment
/
e_xinerama.h
< prev
next >
Wrap
C/C++ Source or Header
|
2006-01-09
|
567b
|
27 lines
/*
* vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
*/
#ifdef E_TYPEDEFS
typedef struct _E_Screen E_Screen;
#else
#ifndef E_XINERAMA_H
#define E_XINERAMA_H
struct _E_Screen
{
int screen;
int x, y, w, h;
};
EAPI int e_xinerama_init(void);
EAPI int e_xinerama_shutdown(void);
EAPI void e_xinerama_update(void);
EAPI const Evas_List *e_xinerama_screens_get(void);
EAPI const Evas_List *e_xinerama_screens_all_get(void);
EAPI void e_xinerama_fake_screen_add(int x, int y, int w, int h);
#endif
#endif